Scheduler for WPF | ComponentOne
C1.Schedule Namespace / BaseCollection<T> Class / ItemChanged Event

In This Topic
    ItemChanged Event (BaseCollection<T>)
    In This Topic
    Occurs when one of collection items has been changed.
    Syntax
    'Declaration
     
    
    Public Event ItemChanged As EventHandler(Of BaseCollectionEventArgs(Of T))
    public event EventHandler<BaseCollectionEventArgs<T>> ItemChanged
    Event Data

    The event handler receives an argument of type BaseCollectionEventArgs<T> containing data related to this event. The following BaseCollectionEventArgs<T> properties provide information specific to this event.

    PropertyDescription
    Returns reference to the changed item.  
    See Also